Online Multiplayer Game Architecture [on hold]

Posted by Eric on Game Development See other posts from Game Development or by Eric
Published on 2014-06-09T02:25:27Z Indexed on 2014/06/09 3:43 UTC
Read the original article Hit count: 475

Filed under:
|
|
|

I am just starting to research online multiplayer game development and I have a high-level architectural question regarding how online multiple games function.

I have server-side and client-side programming experience, and I understand how AJAX-esque transfer protocol operates.

What I don't understand yet is how online multiple fits into all of that. For example, an online Tetris multiplayer game. Would both players have the entire Tetris game built out on their client-side and then get pushed "moves" from the other player via some AJAX-esque mechanism, in which case each client would have to be constantly listening via JavaScript for inbound "moves" and update the client appropriately?

Or would each client build out the aesthetics and run a virtual server per game to which each client connects and thus pull and push commands in real-time via something like web sockets?

I apologize if this question is too high-level and general, but I couldn't find anything online that offered this high-level of a perspective on the topic.

© Game Development or respective owner

Related posts about multiplayer

Related posts about server